/* 01 : Website Global CSS BOF
========================================================== */

:root {
  --primary-color: #0a0a0a;
  --main-black: #000;
  --main-white: #fff;

  --main-yellow: #f3bb00;
  --main-blue: #10ddff;

  --main-text-shade1: rgba(255, 255, 255, 0.8);
  --main-text-shade2: rgba(255, 255, 255, 0.7);
  --main-text-shade3: rgba(255, 255, 255, 0.6);
  --main-text-shade4: rgba(255, 255, 255, 0.5);
  --main-text-shade5: rgba(255, 255, 255, 0.4);
  --main-text-shade6: rgba(255, 255, 255, 0.3);
  --main-text-shade7: rgba(255, 255, 255, 0.2);
  --main-text-shade8: rgba(255, 255, 255, 0.1);
  --main-text-shade9: rgba(255, 255, 255, 0.06);
}

body,
html {
  height: 100%;
}

body {
  background: var(--primary-color);
  font-family: "Poppins";
  font-weight: normal;
  font-size: 16px;
  line-height: normal;
  color: var(--main-white);
  text-transform: none;
  user-select: none;
}

*,
html {
  margin: 0;
  padding: 0;
}

a {
  color: var(--main-white);
  display: inline-block;
}

/* Common color hyperlink */
a:hover,
a:focus,
a:active {
  color: var(--main-yellow);
  text-decoration: none;
}

/* Common hover color hyperlink */
a,
*:hover,
*:focus,
*:active :focus {
  text-decoration: none;
  outline: none !important;
  outline-offset: 0 !important;
}

a img,
img {
  border: none;
  outline: none !important;
  outline-offset: 0 !important;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

i {
  font-family: "FontAwesome";
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  line-height: normal;
}

/* Transition Effect CSS BOF */
a,
i,
input {
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
}

/* Browser Selection CSS BOF */
::selection {
  background: var(--main-yellow);
  color: var(--main-white);
}

::-moz-selection {
  background: var(--main-yellow);
  color: var(--main-white);
}

::-webkit-selection {
  background: var(--main-yellow);
  color: var(--main-white);
}

::-o-selection {
  background: var(--main-yellow);
  color: var(--main-white);
}

::-ms-selection {
  background: var(--main-yellow);
  color: var(--main-white);
}

p a {
  color: var(--main-yellow);
}

p a:hover {
  text-decoration: underline;
}

/* 02 : Global Classes CSS BOF
==================================================== */

::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Background &amp; Color Style CSS BOF
=================================================== */

/* Font Color Style CSS BOF */
.white_text {
  color: var(--main-white) !important;
}

.white_shade1_text {
  color: var(--main-text-shade1);
}

.white_shade2_text {
  color: var(--main-text-shade2);
}

.white_shade3_text {
  color: var(--main-text-shade3);
}

.white_shade4_text {
  color: var(--main-text-shade4);
}

.white_shade5_text {
  color: var(--main-text-shade5);
}

.black_text {
  color: var(--main-black) !important;
}

.primary_text {
  color: var(--primary-color) !important;
}

.yellow_text {
  color: var(--main-yellow) !important;
}

.blue_text {
  color: var(--main-blue) !important;
}

/* Object fit common classes */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

/* Opacity common classes */
.op-1 {
  opacity: 0.1;
}

.op-2 {
  opacity: 0.2;
}

.op-3 {
  opacity: 0.3;
}

.op-4 {
  opacity: 0.4;
}

.op-5 {
  opacity: 0.5;
}

.op-6 {
  opacity: 0.6;
}

.op-7 {
  opacity: 0.7;
}

.op-8 {
  opacity: 0.8;
}

.op-9 {
  opacity: 0.9;
}

/* cursor variation csss */
.cursor-pointer {
  cursor: pointer;
}

/* list styling */
.list-style-disc {
  list-style: disc;
}

.checked-list > li {
  padding-left: 30px;
}

/* 03 : Heading Style CSS BOF
=================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins";
  line-height: normal;
  font-weight: 600;
  font-style: normal;
  color: var(--main-white);
  margin-bottom: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0;
}

h1,
.h1 {
  font-size: 82px;
  line-height: 100px;
}

.h2 {
  font-size: 56px !important;
  line-height: 64px !important;
}

.h3 {
  font-size: 42px !important;
  line-height: 50px !important;
}

.h4 {
  font-size: 28px;
  line-height: 36px;
}

.h5 {
  font-size: 24px !important;
  line-height: 32px;
}

.h6 {
  font-size: 18px !important;
  line-height: normal;
}

.font-36 {
  font-size: 36px !important;
}

.font-16 {
  font-size: 16px !important;
}

.font-20 {
  font-size: 20px !important;
}

/* Font Weight Variation CSS BOF */
.font_rg {
  font-weight: normal !important;
}

.font_bl {
  font-weight: bold !important;
}

.font_blk {
  font-weight: 900 !important;
}

.font_smb {
  font-weight: 600 !important;
}

.font_md {
  font-weight: 500 !important;
}

/* set line clamp for content */
.line-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp1 {
  -webkit-line-clamp: 1;
}

.line-clamp2 {
  -webkit-line-clamp: 2;
}

.line-clamp3 {
  -webkit-line-clamp: 3;
}

.line-clamp4 {
  -webkit-line-clamp: 4;
}

.normal-line-height {
  line-height: normal !important;
}

/* Z-INDEX variation */
.z-9 {
  z-index: 9;
}

.z-99 {
  z-index: 99;
}

.common-rounded {
  border-radius: 20px;
}

.common-rounded-10 {
  border-radius: 10px;
}

/* 04 : Paragraph Style CSS BOF
=================================================== */
p,
.p {
  line-height: 30px;
  font-family: "Poppins";
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  margin-bottom: 0;
  font-weight: normal;
}

/* 05 : Image Style CSS BOF
=================================================== */
img {
  margin-bottom: 0;
}

/*** Buttton Varilation CSS BOF ***/
.btn {
  background-color: var(--main-yellow);
  padding: 13px 26.5px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins";
  transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  border-radius: 30px;
  border: 1px solid var(--main-yellow);
  text-transform: unset;
  box-shadow: none;
  min-width: 160px;
  color: var(--main-black);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover,
.btn:focus {
  background-color: var(--main-blue);
  color: var(--main-black);
  box-shadow: none;
  outline: none;
  border-color: var(--main-blue);
}

.btn:hover svg,
.btn:hover svg path {
  stroke: var(--main-white);
  transition: all 0.4s ease-in-out 0s;
}

.btn_outline {
  background-color: transparent;
  color: var(--main-white);
  border: 1px solid var(--main-text-shade5);
}

.btn_outline:hover,
.btn_outline:focus {
  background-color: var(--main-white);
  color: var(--main-black);
  box-shadow: none;
  outline: none;
  border-color: var(--main-white);
}

.btn_outline:hover img,
.btn_outline:focus img {
  filter: invert(20%) grayscale(100%) brightness(50%) contrast(4);
  transition: all 0.4s ease-in-out 0s;
}

.btn_white {
  background-color: var(--main-white);
  color: var(--primary-color);
  border: 1px solid var(--main-white);
}

.btn_white:hover,
.btn_white:focus {
  background-color: var(--main-blue);
  box-shadow: none;
  outline: none;
  border-color: var(--main-blue);
}

.btn_black {
  background-color: var(--main-black);
  color: var(--main-white);
  border: 1px solid var(--main-black);
}

.btn_black:hover,
.btn_black:focus {
  background-color: var(--main-white);
  box-shadow: none;
  outline: none;
  color: var(--main-black);
  border-color: var(--main-white);
}

/* IF BLACK BTN WITH ARROW */
.btn_blue_arrow,
.btn_yellow_arrow {
  padding-right: 60px;
}

.btn_black.btn_blue_arrow:hover,
.btn_black.btn_blue_arrow:focus {
  color: var(--main-blue);
  background-color: var(--main-black);
  border-color: var(--main-black);
}

.btn_black.btn_yellow_arrow:hover,
.btn_black.btn_yellow_arrow:focus {
  color: var(--main-yellow);
  background-color: var(--main-black);
  border-color: var(--main-black);
}

/* .btn_black.btn_blue_arrow:hover .inner-btn-arrow {
  background-color: var(--main-yellow);
}
.btn_black.btn_yellow_arrow:hover .inner-btn-arrow {
  background-color: var(--main-blue);
} */
.btn_black .inner-btn-arrow {
  padding: 8px;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.btn_blue {
  background-color: var(--main-blue);
  color: var(--main-black);
  border: 1px solid var(--main-blue);
}

.btn_blue:hover,
.btn_blue:focus {
  background-color: var(--main-yellow);
  box-shadow: none;
  outline: none;
  color: var(--main-black);
  border-color: var(--main-yellow);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* 11 : Form &amp; Input Style BOF
==================================================== */

.form-control,
.form-select {
  background-color: transparent;
  border: 1px solid var(--main-text-shade6);
  border-radius: 10px;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  font-size: 16px;
  color: var(--main-white);
  font-family: "Poppins";
  font-weight: normal;
  padding: 18px 22px;
  line-height: normal;
  /* height: 60px; */
}

.form-select {
  background-image: url("./../images/select-arrow.webp");
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: right 22px center;
  cursor: pointer;
  color: var(--main-text-shade6);
  padding: 16px 50px 16px 22px;
}

.form-select option {
  color: var(--main-black) !important;
}

.form-label {
  font-family: "Poppins";
  font-size: 20px;
  font-weight: 500;
  color: var(--main-black);
  margin-bottom: 12px !important;
}

textarea.form-control {
  resize: none;
  overflow: auto;
  padding: 18px 23px;
  height: 232px;
}

.form-group .required-field {
  color: rgba(255, 63, 63, 1);
}

/*** Placeholder CSS BOF ***/
.form-control::placeholder,
.form-control::-moz-placeholder,
.form-control:-ms-input-placeholder,
.form-control::-webkit-input-placeholder,
.form-control::-o-input-placeholder {
  color: var(--main-text-shade6);
  font-weight: 400;
  font-size: 16px;
}

/* Focus State CSS BOF */

.form-control:focus,
.form-select:focus {
  border-color: var(--main-yellow);
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  background-color: transparent;
  color: var(--main-white);
}

/* SECONDARY FORM DESIGN ADDED ---- BY HIMANI */

.secondary-form .form-label {
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--main-white);
  margin-bottom: 8px !important;
  text-transform: capitalize;
}

.secondary-form .form-control,
.secondary-form .form-select {
  font-size: 18px;
  background-color: var(--main-text-shade9);
  border-color: transparent;
  border-radius: 40px;
  padding: 22px 40px;
}

.secondary-form .form-control:focus,
.secondary-form .form-select:focus {
  border-color: var(--main-yellow);
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  color: var(--main-white);
}

.secondary-form .form-select {
  color: var(--main-text-shade3);
}

.secondary-form .form-select option {
  color: var(--main-white) !important;
}

.secondary-form textarea.form-control {
  height: 130px;
  padding: 18px 23px;
}

/*** Placeholder CSS BOF ***/
.secondary-form .form-control::placeholder {
  color: var(--main-white);
  font-weight: 400;
  font-size: 18px;
}

.secondary-form .form-control::-moz-placeholder {
  color: var(--main-white);
  font-weight: 400;
  font-size: 18px;
}

.secondary-form .form-control:-ms-input-placeholder {
  color: var(--main-white);
  font-weight: 400;
  font-size: 18px;
}

.secondary-form .form-control::-webkit-input-placeholder {
  color: var(--main-white);
  font-weight: 400;
  font-size: 18px;
}

.secondary-form .form-control::-o-input-placeholder {
  color: var(--main-white);
  font-weight: 400;
  font-size: 18px;
}

/* SOME GLOBAL CSS */
.page-wrapper {
  margin: 0px auto;
  overflow-x: hidden;
}

.no-scroll {
  overflow: hidden;
}

.common-padding {
  padding: 140px 0;
}

.common-title-padding {
  padding-bottom: 60px;
}

.bg-yellow {
  background-color: var(--main-yellow);
}

.bg-blue {
  background-color: var(--main-blue);
}

.bg-common {
  background-color: var(--main-text-shade9);
}

/* ======================================================
                COMMON CONTAINER SOC
====================================================== */
@media (min-width: 1500px) {
  .container {
    max-width: 1420px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1520px;
  }
}

/* ====================================================
            SLICK SLIDER COMMON CSS
==================================================== */
ul.slick-dots {
  font-size: 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: unset;
  bottom: 20px;
  left: 0;
  right: 0;
}

ul.slick-dots li {
  display: inline-block;
  margin: 8px;
}

ul.slick-dots li button {
  font-size: 0;
  outline: 0;
  border: transparent;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

ul.slick-dots li.slick-active button {
  background: #000;
  border-color: #000;
}

ul.slick-dots li {
  padding: 0px;
  border-radius: 100%;
}

ul.slick-dots li button {
  position: relative;
  z-index: 1;
}

ul.slick-dots li button:before {
  content: "";
  width: 12px;
  height: 12px;
  background: transparent;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 100%;
  transition: all 400ms ease;
}

ul.slick-dots li.slick-active button:before {
  background: var(--main-white);
}

.slick-vertical .slick-slide {
  border: none;
}

ul.slick-dots li button:before {
  background-color: var(--main-text-shade9);
}

button.slick-arrow {
  font-size: 0;
  position: absolute;
  z-index: 9;
  background: var(--main-white);
  cursor: pointer;
  border: 1px solid var(--main-white);
  bottom: 0;
  width: 50px;
  height: 50px;
  top: 100%;
  border-radius: 100%;
  text-align: center;
}

button.slick-prev.slick-arrow {
  right: unset;
  left: 520px;
  top: 0;
  bottom: 0;
  margin: auto;
}

button.slick-prev.slick-arrow.slick-disabled,
button.slick-next.slick-arrow.slick-disabled {
  opacity: 0.4;
  background-color: var(--main-text-shade3);
  border-color: var(--main-text-shade3);
}

button.slick-next.slick-arrow {
  right: 520px;
  left: unset;
  top: 0;
  bottom: 0;
  margin: auto;
}

button.slick-prev.slick-arrow:after {
  content: "";
  background: url("./../images/magento/btn-arrow.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 12px;
  display: inline-block;
  width: 21px;
  transform: rotate(-180deg);
  transition: all 500ms ease;
}

button.slick-next.slick-arrow:after {
  content: "";
  background: url("./../images/magento/btn-arrow.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 12px;
  display: inline-block;
  width: 21px;
  transition: all 500ms ease;
}

/* ====================================================
                  COMMON LETS TALK 
==================================================== */
.common-lets-talk-wrapper {
  background-image: url("./../images/lets-talk/experts-talk-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1520px 98%;
}

/* ===============================================
            COMMON TABBING SOC
=============================================== */
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: var(--primary-color);
  border: none;
  border-radius: 30px;
  color: var(--main-white);
}

.nav-tabs .nav-link {
  margin-bottom: 0;
  background: 0 0;
  padding: 10px 40px;
  color: var(--main-text-shade3);
  border: none;
  border-radius: 30px;
}

@media (max-width: 991px) {
  .nav-tabs .nav-link {
    padding: 10px 25px;
  }
}

.nav-tabs {
  border: none;
}

/* ================================================
               COMMON TITLE STRUCTURE
================================================= */
.common-title-padding {
  padding-bottom: 70px;
}

/* ===============================================
              COMMON ACCORDIAN CSS
================================================= */
.accordion-button:focus {
  box-shadow: unset;
  border-color: transparent;
}

.accordion-button {
  background-color: transparent;
  color: var(--main-white);
  font-size: 24px;
  font-weight: 600;
  border: 1px solid var(--main-blue);
}

.accordion-button:not(.collapsed) {
  color: var(--main-text-shade1);
  background-color: transparent;
  box-shadow: unset;
  border-bottom: 0;
}

.accordion-item {
  background-color: var(--main-text-shade9);
  border: none;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid var(--main-text-shade8);
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 10px;
}

/* .accordion-collapse.show */
.accordion-item:not(:first-of-type) {
  border-top: 1px solid var(--main-text-shade8);
}

.accordion-button:not(.collapsed)::after {
  display: none;
}

.accordion-button::after {
  display: none;
}

.accordion-button {
  padding: 25px 30px 25px 30px;
}

.accordion-body {
  padding: 0px 30px 25px 85px;
  text-align: start;
}

.accordion-item .accordion-button {
  border-radius: 10px;
}

.accordion-body.collapse {
  border-color: transparent;
}

.accordion-body:not(.collapse) {
  border: 1px solid var(--main-blue);
  border-top: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.accordion-button:not(.collapsed) svg path {
  fill: var(--main-blue);
}

.accordion-button.collapsed {
  border-color: transparent;
  border-radius: 10px;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.accordion-button:not(.collapsed) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding-bottom: 10px;
}

.accordion-header {
  padding: 0;
}

/* ======================================================================
                        SOME COMMON CLASSES 
=======================================================================*/
.common-shadow-effect1 {
  background-image: linear-gradient(to bottom, #0f2730, #181306, #0a0a0a);
}

.common-shadow-effect2 {
  background-image: linear-gradient(to bottom, #0a0a0a, #131000, #061317);
}

/* ======================================================
=========================================================
                        HEADER SOC
=========================================================
====================================================== */

.site-header {
  position: relative;
  z-index: 999;
}

.header-main .header-inner-main {
  padding: 22px 0;
  background-color: transparent;
}

.header-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header-main-active .header-inner-main {
  background-color: var(--primary-color);
}

.header-main .header-inner-main .header-inner {
  align-items: center;
}

.header-main .header-inner-main nav.navbar {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  padding: 0px 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.header-main
  .header-inner-main
  .header-inner
  .header-menu.show
  .header-menu-inner {
  padding-top: 0;
}

/* ======================================================================
=========================================================================
                         BANNER SECTION SOC 
=========================================================================
=======================================================================*/
.banner-main {
  background-image: url("./../images/magento/banner-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  padding-top: 110px;
}

.banner-main .title-main {
  max-width: 805px;
  padding: 70px 0 120px;
}

.banner-main .title-main h1 {
  font-size: 68px;
  line-height: 78px;
  padding-bottom: 20px;
}

.banner-main .banner-form {
  max-width: 620px;
  margin-top: 50px;
}

.banner-main .banner-form .form-control {
  padding: 22px 200px 22px 30px;
}

/* ======================================================================
=========================================================================
                         COUNTER SECTION SOC 
=========================================================================
=======================================================================*/
.counter-main {
  background-color: var(--main-text-shade9);
  padding: 35px 0;
}

/* ======================================================================
=========================================================================
                      WORK STEPS SECTION SOC 
=========================================================================
=======================================================================*/
.work-step-image {
  width: 120px;
  height: 120px;
  border-radius: 40px 40px 0px 40px;

  background-color: #2e291f;
}

.work-step-box {
  width: calc(100% / 4);
}

.work-steps:after {
  content: "";
  border-top: 2px dashed var(--main-text-shade7);
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  z-index: 9;
}

.work-step-box {
  position: relative;
}

.work-step-box .work-step-image:after {
  content: "";
  position: absolute;
  background-image: url("./../images/magento/steps-arrow.png");
  position: absolute;
  left: calc(100% + 80px);
  background-repeat: no-repeat;
  background-size: 13px 24px;
  width: 13px;
  height: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.work-step-box:nth-child(1):before {
  content: "";
  width: 15px;
  height: 15px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 54px;
  /* bottom: 0; */
  border-radius: 100%;
  margin: auto;
}

.work-step-box:nth-child(4):before {
  content: "";
  width: 15px;
  height: 15px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 54px;
  /* bottom: 0; */
  border-radius: 100%;
  margin: auto;
}

.work-step-box:last-child .work-step-image:after {
  display: none;
}

/* ======================================================================
=========================================================================
                      LETS TALK SECTION SOC 
=========================================================================
=======================================================================*/
.lets-talk-wrapper {
  background-image: url("./../images/magento/lets-talk-bg-image.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top;
  padding: 90px 145px;
}

.lets-talk-left-vector {
  position: absolute;
  left: -60px;
  bottom: -55px;
}

.lets-talk-right-vector {
  right: 80px;
  bottom: 80px;
}

/* CURVES BTWEEN TWO SECTION */
.left-vector {
  position: absolute;
  left: -10vw;
  top: -1000px;
  max-width: 1300px;
}

.right-vector {
  position: absolute;
  right: -10vw;
  top: -600px;
  max-width: 1200px;
}

/* ADD GET DEMO FORM --- 01/05/24 */
.get-demo-form.secondary-form .form-control {
  background: var(--primary-color);
  padding: 22px 200px 22px 30px;
}

.secondary-form.get-demo-form {
  position: relative;
  z-index: 99;
  max-width: 500px;
  margin: auto;
}

/* ======================================================================
=========================================================================
                      FEATURE SECTION SOC 
=========================================================================
=======================================================================*/
.feature-card {
  padding: 40px;
  border: 1px solid transparent;
}

.feature-card:hover {
  border-color: var(--main-text-shade8);
}

.feature-card img {
  max-height: 50px;
  width: auto;
}

/* ======================================================================
=========================================================================
                      MORE ADVANCE SECTION SOC 
=========================================================================
=======================================================================*/
.more-advance-wrapper {
  background: url("./../images/magento/more-advance-bg-img.png"),
    var(--main-white);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top;
  padding: 50px 60px 50px 0;
  border-radius: 30px;
}

.more-advance-right-vector {
  position: absolute;
  right: 60px;
  bottom: -30px;
}

.more-advance-blue-vector {
  top: 0;
}

.more-advance-yellow-vector {
  right: 0;
  top: 0;
}

/* ======================================================================
=========================================================================
                      PORTFOLIO SECTION SOC 
=========================================================================
=======================================================================*/
.portfolio-main .portfolio-card .portfolio-card-title {
  padding: 40px;
  width: 100%;
}

.portfolio-main .portfolio-card {
  border-radius: 0 50px 50px 50px;
  border: 1px solid transparent;
}

.portfolio-main .portfolio-card:hover {
  border-color: var(--main-text-shade8);
}

.portfolio-main .portfolio-card .portfolio-layer-primary {
  background-color: var(--main-text-shade9);
  border-radius: 24px 24px 0 0;
  padding: 13px;
  max-width: 87%;
  margin: auto;
}

.portfolio-main .portfolio-card .portfolio-layer-secondary {
  background-color: var(--main-text-shade8);
  border-radius: 24px 24px 0 0;
  padding: 13px;
  max-width: 95%;
  margin: auto;
}

/* ======================================================================
=========================================================================
                      CLIENT SECTION SOC 
=========================================================================
=========================================================================*/
.client-slider .slick-current.slick-active {
  transform: scale(1);
}

.client-slider .slick-slide {
  transform: scale(0.8);
}

.client-slide {
  background: var(--main-text-shade9);
  border: 1px solid var(--main-text-shade8);
  padding: 54px 108px 85px 108px;
  border-radius: 30px;
  margin: 0 20px;
  position: relative;
  overflow: hidden;
}

.client-slider .slick-slide.slick-current.slick-active > .client-slide:after {
  display: none;
}

.client-slider .slick-slide > .client-slide:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 9;
  background: linear-gradient(to right, #131001 65%, var(--main-text-shade9));
}

.client-slider
  .slick-slide
  + .slick-active
  + .slick-slide
  > .client-slide:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(to left, #131001 65%, var(--main-text-shade9));
}

/* ====================================================
=======================================================
                CLIENT SECTION SOC
=======================================================
==================================================== */
/* .client-content {
  padding: 34px 34px 46px 34px;
}
.client-box {
  border-radius: 30px;
  overflow: hidden;
  margin: 0 20px;
}
.client-slider .slick-list.draggable {
  margin: 0px -20px;
  overflow: unset;
}
.client-slider button.slick-arrow {
  bottom: 150px !important;
  top: unset !important;
}
.client-slider button.slick-next.slick-arrow {
  right: 0;
}
.client-slider button.slick-prev.slick-arrow {
  left: unset;
  right: 70px;
}
.client-slider .slick-slide.slick-current.slick-active + .slick-active {
  margin-top: -150px;
}
.client-slider
  .slick-slide.slick-current.slick-active
  + .slick-active
  + .slick-active {
  margin-top: -300px;
}
.client-slider .slick-slide.slick-current.slick-active {
  margin-top: 0;
}
.client-slider .slick-slide {
  transition: all 0.5s linear !important;
}
.client-element {
  display: inline-block;
  position: absolute;
  bottom: -50px;
  left: calc((100% - 850px) / 2);
  z-index: -1;
}

.client-img-sec {
  height: 290px;
}
.client-img-sec > img {
  height: 100%;
  object-fit: cover;
} */

/* ======================================================================
=========================================================================
                      TECHNOLOGIES LOGO SECTION SOC 
=========================================================================*/

.technology-main .slick-slide {
  margin: 0 90px;
}

.technology-main .reverse-technology-slider {
  margin-top: 80px;
}

.technology-slider .slick-track,
.reverse-technology-slider .slick-track {
  display: flex;
  align-items: center;
}

.scrolling-slider-wrapper {
  padding-top: 30px;
}

/* ======================================================================
=========================================================================
                      LETS TALK SECTION SOC 
=========================================================================
=======================================================================*/
.modern-web-app-wrapper {
  background-image: url("./../images/magento/lets-talk2-bg-image.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top;
  padding: 80px 75px;
}

.modern-web-download:hover {
  background-color: var(--main-yellow);
}

.secondary-form .secondary-form-btn {
  width: min-content;
}

/* ========================================================
===========================================================
                CATALYZE GROWTH SECTION SOC
===========================================================
======================================================== */

/* STYLING FOR CUSTOM COUNTRY CODE DROPDOWN  */

.select-menu {
  width: 100px;
}

.mobile-field .form-control, .email-mobile-field .form-control {
  /*border-left: 0; */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  /* width: calc(100% - 100px); */
  width: 100%;
}

.select-menu .select-btn {
  display: flex;
  background: transparent;
  padding: 18px 15px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 8px;
  align-items: center;
  cursor: pointer;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  color: var(--main-white);
  justify-content: space-between;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.select-menu .options {
  position: absolute;
  width: 100px;
  overflow-y: auto;
  max-height: 295px;
  margin-top: 10px;
  border-radius: 8px;
  background: var(--main-white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-duration: 0.35s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.35s;
  -webkit-animation-fill-mode: both;
}

.select-menu .options .option {
  display: flex;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  align-items: center;
  background: var(--main-white);
}

.select-menu .options .option:hover {
  background: var(--main-text-shade8);
}

.select-menu .options .option .option-text {
  font-size: 16px;
  color: var(--primary-color);
}

.select-btn i {
  font-size: 25px;
  transition: 0.3s;
}

.select-menu.active .select-btn i {
  transform: rotate(-180deg);
}

.select-menu.active .options {
  display: block;
  opacity: 0;
  z-index: 10;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
}

.modern-web-app-form .form-control {
  border: 1px solid rgb(10, 10, 10, 0.3);
  border-radius: 40px;
  color: var(--primary-color);
  padding: 18px 200px 18px 22px;
}

.modern-web-app-form .form-control:focus {
  border-color: var(--main-yellow);
}

.modern-web-app-form {
  max-width: 570px;
}

.growth-review-box {
  border: 1px solid var(--main-text-shade6);
  border-radius: 10px;
  padding: 26px 25px;
  text-align: center;
  height: 100%;
}

.review-brand {
  min-height: 30px;
  max-height: 30px;
  display: inline-block;
}

.growth-review-box-v2 {
  border: 1px solid var(--main-text-shade6);
  border-radius: 10px;

  text-align: center;
}

.growth-review-box-v2 .review-brand,
.growth-review-box-v2 .review-details {
  padding: 33px 25px;
}

.growth-review-box-v2 .review-brand {
  min-height: auto;
  max-height: unset;
  border-right: 1px solid var(--main-text-shade4);
}

/*====================================================
                 FOOTER SECTION
=================================================== */
.footer-main {
  background-color: #162225;
  padding: 20px 0;
  margin-bottom: 103px;
}

.footer-logo-img {
  max-width: 145px;
}

/* ====================================================
        REGISTRATION OFFER MODAL SECTION
===================================================  */

.registration-modal {
  transform: translateY(98%);
  transition: all 500ms ease;
}

.registration-modal-show {
  transform: translateY(0);
}

.registration-modal .h4 {
  font-size: 29px;
}

/* FORM CONTACT NUMBER FILLED KARAN - 02-05-24 */
.mobile-field > p , .email-mobile-field > p{
  display: flex;
  align-items: baseline;
  width: 100%;
}

/*.mobile-field>p span.wpcf7-form-control-wrap:last-child {
  width: calc(100% - 100px);
}

.mobile-field>p span.wpcf7-form-control-wrap:first-child {
  width: 100px;
} */

.mobile-field > p span.wpcf7-form-control-wrap .form-select, .email-mobile-field > p span.wpcf7-form-control-wrap .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  font-size: 16px;
  line-height: normal;
  width: 100px;
  padding: 19px 16px;
  height: 100%;
}

/* COMMON WORDPRESS CONTACT FORM  */

.lets-talk-wrapper .wpcf7 form.invalid .wpcf7-response-output,
.lets-talk-wrapper .wpcf7 form.unaccepted .wpcf7-response-output,
.lets-talk-wrapper .wpcf7 form.payment-required .wpcf7-response-output,
.lets-talk-wrapper .wpcf7 form.sent .wpcf7-response-output,
.lets-talk-wrapper .wpcf7 form.failed .wpcf7-response-output,
.lets-talk-wrapper .wpcf7 form.aborted .wpcf7-response-output,
.lets-talk-wrapper .wpcf7 form.spam .wpcf7-response-output {
  color: var(--main-black) !important;
}

.catalyze-growth-wrapper .wpcf7 form.invalid .wpcf7-response-output,
.catalyze-growth-wrapper .wpcf7 form.unaccepted .wpcf7-response-output,
.catalyze-growth-wrapper .wpcf7 form.payment-required .wpcf7-response-output {
  color: var(--main-white);
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
}

.meeting-form.email-form .wpcf7-response-output {
  color: var(--main-black);
}

/*  FOOTER FORM COUNTRY FIELD CSS KARAN 20/5/24 */
.mobile-field .form-control ,.email-mobile-field .form-control{
  width: 100%;
  border-radius: 0 10px 10px 0;
}

.mobile-field > p,.email-mobile-field > p {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.mobile-field > p span.wpcf7-form-control-wrap .form-select, .email-mobile-field > p span.wpcf7-form-control-wrap .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  font-size: 16px;
  line-height: normal;
  width: 100px;
  padding: 19px 16px;
  height: 100%;
}

.intl-tel-input,
.iti {
  width: 100%;
}

.iti__flag-box,
.iti__country-name {
  color: var(--main-black);
}

.iti__flag-box,
.iti__country-name,
.iti__dial-code,
.iti__flag-box,
.iti__country-name,
.iti__dial-code,
.iti--separate-dial-code .iti__selected-dial-code {
  font-size: 14px;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  width: 100%;
  z-index: 9;
  padding: 0px;
}

.mobile-field .wpcf7-form-control-wrap:last-child, .email-mobile-field .wpcf7-form-control-wrap:last-child {
  width: 100%;
}

.mobile-field .wpcf7-form-control-wrap .iti--allow-dropdown #mobile_code,
.email-mobile-field
  .wpcf7-form-control-wrap
  .iti--allow-dropdown
  #email_mobile_code
{
  width: 0;
  border-radius: 10px 0 0px 10px;
  border-right: 0px;
  padding-left: 75px !important;
  position: relative;
  z-index: -1;
  visibility: hidden;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent !important;
  border: 1px solid var(--main-text-shade6);
  border-right: 0;
  border-radius: 10px 0 0 10px;
}

.iti--separate-dial-code .iti__selected-flag[aria-expanded="true"] {
  border-color: var(--main-yellow);
}

@media (max-width: 767px) {
  .iti__flag-box,
  .iti__country-name,
  .iti__dial-code,
  .iti__flag-box,
  .iti__country-name,
  .iti__dial-code,
  .iti--separate-dial-code .iti__selected-dial-code {
    font-size: 14px;
  }

  .iti__country-list {
    min-width: 300px;
  }
}

/* SPINNER CSS */
.wpcf7-spinner {
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  margin: unset;
  z-index: 1;
  position: absolute;
}

/* =========================================================
               Email MODAL STYLING  
========================================================= */

@media (min-width: 1200px) {
  .getEmailModal .modal-dialog {
    max-width: 618px;
  }
}

/* / FOR MODAL / */
.white-bg-overlay {
  background: var(--main-white);
}

/* / / MODAL-2 CSS 8-2-24 KARAN /  / */
.meeting-form-title {
  padding-bottom: 36px;
}
.meeting-form form .form-group {
  margin-bottom: 24px;
}
.meeting-form .form-label {
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--main-white);
  margin-bottom: 8px !important;
  text-transform: capitalize;
}
.meeting-form .form-control,
.meeting-form .form-select {
  font-size: 18px;
  background-color: var(--primary-color);
  border-color: transparent;
  border-radius: 5px;
  padding: 18px 23px;
}
.meeting-form .form-select option {
  color: var(--main-white) !important;
}
.meeting-form .form-control:focus,
.meeting-form .form-select:focus {
  border-color: var(--main-yellow);
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  color: var(--main-white);
}
/* Placeholder CSS BOF */
.meeting-form .form-control::placeholder,
.meeting-form .form-select::placeholder {
  color: var(--main-text-shade3);
  font-weight: 400;
  font-size: 18px;
}
.meeting-form .form-control::-moz-placeholder,
.meeting-form .form-select::-moz-placeholder {
  color: var(--main-text-shade3);
  font-weight: 400;
  font-size: 18px;
}
.meeting-form .form-control:-ms-input-placeholder,
.meeting-form .form-select:-ms-input-placeholder {
  color: var(--main-text-shade3);
  font-weight: 400;
  font-size: 18px;
}
.meeting-form .form-control::-webkit-input-placeholder,
.meeting-form .form-select::-webkit-input-placeholder {
  color: var(--main-text-shade3);
  font-weight: 400;
  font-size: 18px;
}
.meeting-form .form-control::-o-input-placeholder,
.meeting-form .form-select::-o-input-placeholder {
  color: var(--main-text-shade3);
  font-weight: 400;
  font-size: 18px;
}
.meeting-form textarea.form-control {
  height: 100px;
}

/* / EMAIL FORM / */

.email-form form .form-group {
  margin-bottom: 16px !important;
}
.email-form .form-control,
.email-form .form-control:focus,
.email-form .form-control:active {
  border-color: rgb(29, 29, 29, 0.3) !important;
  background-color: transparent !important;
  color: var(--main-black);
}
.email-form .form-control::placeholder {
  color: var(--main-black);
}

/** Placeholder CSS BOF **/
.email-form .form-control::placeholder {
  color: var(--main-black) !important;
  font-weight: 400;
  font-size: 18px;
}
.email-form .form-control::-moz-placeholder {
  color: var(--main-black) !important;
  font-weight: 400;
  font-size: 18px;
}
.email-form .form-control:-ms-input-placeholder {
  color: var(--main-black) !important;
  font-weight: 400;
  font-size: 18px;
}
.email-form .form-control::-webkit-input-placeholder {
  color: var(--main-black) !important;
  font-weight: 400;
  font-size: 18px;
}
.email-form .form-control::-o-input-placeholder {
  color: var(--main-black) !important;
  font-weight: 400;
  font-size: 18px;
}
/* / NEW DATE PICKER DESIGN /
/ / MODAL CSS 7-2-24 KARAN /  / */
.getQuoteModal .modal-body {
  padding: 60px;
}
.getEmailModal .modal-body {
  padding: 50px;
}

/* =========================================================
               COMMON MODAL STYLING  
========================================================= */
/* / / MODAL CSS 7-2-24 KARAN / / COMMAN MODAL CSS /  / */
.modal-backdrop {
  background-color: var(--third-color);
}
.modal-backdrop.show {
  opacity: 0.96;
}
.modal-close {
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}


@media(max-width:1199px){
  
  /* / / MODAL CSS KARAN 8-2-24 / / */
  .getQuoteModal .modal-body {
    padding: 40px;
  }
  .getEmailModal .modal-body {
    padding: 40px;
  }
  .calculator-container .calculator-title {
    padding-bottom: 20px;
  }
  .calculator-container {
    border-right: 0px;
    border-bottom: 1px solid var(--main-text-shade7);
  }
  /* / / MODAL 2 / / */
  .meeting-form-title {
    padding-bottom: 30px;
  }
  .meeting-form .form-label {
    font-size: 18px;
    line-height: 24px;
  }
  .meeting-form .form-control,
  .meeting-form .form-select {
    font-size: 16px;
    padding: 16px 23px;
  }
  /* Placeholder CSS BOF */
  .meeting-form .form-control::placeholder {
    font-size: 16px;
  }
  .meeting-form .form-control::-moz-placeholder {
    font-size: 16px;
  }
  .meeting-form .form-control:-ms-input-placeholder {
    font-size: 16px;
  }
  .meeting-form .form-control::-webkit-input-placeholder {
    font-size: 16px;
  }
  .meeting-form .form-control::-o-input-placeholder {
    font-size: 16px;
  }}
  
@media (max-width: 991.98px){
.getEmailModal .modal-dialog {
    max-width: 95%;
}
}


@media (max-width: 767.98px){
.getEmailModal .modal-body {
    padding: 30px;
}
}
@media (max-width: 575px){
.getEmailModal .modal-body {
    padding: 30px 20px;
}
}

.email-mobile-field .iti--separate-dial-code .iti__selected-dial-code {
  color: var(--main-black);
}
.email-mobile-field .iti--separate-dial-code .iti__selected-flag {
  border: 1px solid rgb(29, 29, 29, 0.3);
  border-right: 0;
}

.mobile-field .form-control,
.email-mobile-field .form-control {
  width: 100%;
  border-radius: 0 10px 10px 0;
}
.mobile-field > p,
.email-mobile-field > p {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.getEmailModal {
  background: rgb(0 0 0 / 90%);
}